home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QRZ! Ham Radio 6
/
QRZ Ham Radio Callsign Database - Volume 6.iso
/
mac
/
files
/
amiga
/
rhinosrc.lha
/
daemon.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-12-16
|
549b
|
28 lines
#ifndef _DAEMON_H
#define _DAEMON_H
struct daemon {
char *name;
unsigned stksize;
void (*fp) __ARGS((int,void *,void *));
};
#define NULLDAEMON ((struct daemon *)0)
extern struct daemon Daemons[];
/* In alloc.c: */
void gcollect __ARGS((int,void*,void*));
/* In main.c: */
void keyboard __ARGS((int,void*,void*));
void network __ARGS((int,void *,void *));
void display __ARGS((int,void *,void *));
/* In kernel.c: */
void killer __ARGS((int,void*,void*));
/* In timer.c: */
void timerproc __ARGS((int,void*,void*));
#endif /* _DAEMON_H */